Document Solutions for Word
GrapeCity.Documents.Word Assembly / GrapeCity.Documents.Word Namespace / GcWordDocument Class / MergeDocuments Method / MergeDocuments(ValueTuple<GcWordDocument,FormattingCopyStrategy>[]) Method
An array of pairs of source documents and corresponding formatting copy strategies.

In This Topic
    MergeDocuments(ValueTuple<GcWordDocument,FormattingCopyStrategy>[]) Method
    In This Topic
    Merges several source documents into a single new GcWordDocument.
    Syntax
    'Declaration
     
    Public Overloads Shared Function MergeDocuments( _
       ByVal ParamArray mergedDocuments() As System.ValueTuple(Of GcWordDocument,FormattingCopyStrategy) _
    ) As GcWordDocument
    public static GcWordDocument MergeDocuments( 
       params System.ValueTuple<GcWordDocument,FormattingCopyStrategy>[] mergedDocuments
    )

    Parameters

    mergedDocuments
    An array of pairs of source documents and corresponding formatting copy strategies.

    Return Value

    The newly created GcWordDocument consisting of the merged Body ranges of the source documents.
    See Also